{% extends 'base.html' %} {% block title %}Verify Certificate — {{ site_settings.institute_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Certificate verification

Enter the unique Certificate ID printed on the certificate to confirm authenticity.

{% csrf_token %} {{ form.code }} {% if form.code.errors %}
{{ form.code.errors.0 }}
{% endif %}
Format: CERT-XXXX-XXXX (14 characters max)
{% if searched %} {% if certificate and certificate.is_valid %}
Verified authentic certificate
This certificate was issued by {{ site_settings.institute_name }}.
Verified
Authentic
Student name
{{ certificate.recipient_name }}
Course / certification
{{ certificate.program_title }}
Issue date
{{ certificate.issued_at|date:"d M Y" }}
Certificate ID
{{ certificate.verification_code }}
Score
{{ certificate.score_percent|floatformat:1 }}%
View soft-copy certificate
{% elif certificate and certificate.is_revoked %}
Revoked certificate. This code exists but the certificate has been revoked {% if certificate.revoke_reason %} ({{ certificate.revoke_reason }}){% endif %}. It is not valid for official use.
{% else %}

Fake certificate — not issued by {{ site_settings.institute_name }}

No authentic certificate matches this Certificate ID. The details you entered are not recognized as an official certificate from {{ site_settings.institute_name }}.

{% endif %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}